Skip to main content
Version: 1.0.2

Get TCH Participant

The GetTCHParticipant API enables to fetch the details of TCH participants

Method: POST

{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "TCH"

routingNumber

Mandatory

String

Routing number of the bank or financial institution

Example – "011001276"


curl --location --globoff '{{URL}}/rtp/rpc/TransactionService/GetTCHParticipant' \
--header 'Content-Type: application/json' \
--data '{"processor":"TCH","routingNumber":"011001276"}'

Request Body (Applicable only for TCH)


{
"processor": "TCH",
"routingNumber": "011001276"
}

Response: 200

Response Parameters
ParameterDescription

activationDate

String

Date when the participant (bank or financial institution) service was activated in given in DDMMYYYY format

Example – "2/21/2023"

batchID

String

Unique batch ID of the participant

Example – "E18C27DEC16D"

connectedStatus

Boolean

Connected status of the participant bank

Example – true

connection

String

Type of connection

Example – "COCC"

generatedDate

String

Date and time when the TCH participant profile is fetched out

Example – "2024-01-30T07:00:01Z"

id

String

Unique ID of the generated profile

Example – "011001276"

institutionId

String

Routing number of the bank or financial institution

Example – "11001276"

institutionName

String

Name of the bank or financial institution

Example – "OneUnited Bank"

messageSetVersion

String

Version number of the message set used to fetch the participant profile

Example – "2"

name

String

Name of the participant bank whose profile is retrieved

Example – "OneUnited Bank"

onlineStatus

Boolean

Online status of the participant bank

Example – true

participantId

String

Unique ID of the participant bank

Example – "011001276P1"

services

Array

Array (Type of services enabled for the bank)

Example – "CRDT","RFRF"

status

String

Current status of the participant bank

Example – "NORMAL"

updatedDate

String

Date and time of the participant bank profile was last updated

Example – "2024-05-29T14:38:28.297Z"

Response Body (Applicable only for TCH)


{
"activationDate": "2/21/2023",
"batchID": "E18C27DEC16D",
"connectedStatus": true,
"connection": "COCC",
"generatedDate": "2024-01-30T07:00:01Z",
"id": "011001276",
"institutionId": "11001276",
"institutionName": "OneUnited Bank",
"messageSetVersion": "2",
"name": "OneUnited Bank",
"onlineStatus": true,
"participantId": "011001276P1",
"services": [
"CRDT",
"RFRF"
],
"status": "NORMAL",
"updatedDate": "2024-05-29T14:38:28.297Z"
}